367965154828f90c38d636bea4dd37506c4d1939,org.eclipse.virgo.web.war.deployer/src/main/java/org/eclipse/virgo/web/war/deployer/WARDeployer.java,WARDeployer,start,#URI#,731

Before Change


            logger.error("Cannot start deployable with URI + [" + uri + "]. There is no bundle installed with this URI.");
            return false;
        }
        final String warName = extractDecodedWarNameFromString(uri.toString());
        StatusFileModificator.deleteStatusFile(warName, this.pickupDir);
        final long lastModified = new File(uri).lastModified();
        this.eventLogger.log(WARDeployerLogEvents.NANO_WEB_STARTING, bundle.getSymbolicName(), bundle.getVersion());

After Change



    @Override
    public boolean start(URI uri) {
    	String extractionFolderName = WebBundleUtils.calculateCorrectSymbolicName(extractDecodedWarNameFromString(uri.toString()));
        Bundle bundle = getInstalledBundle(extractionFolderName);
        if (bundle == null) {
            this.eventLogger.log(WARDeployerLogEvents.NANO_STARTING_ERROR, uri);